//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['Lake Street Dive','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Tuesday','7/8/2025','7:00 PM','6956831','Lake-Street-Dive-7-8-2025'],['Alison Krauss and Union Station, Jerry Douglas & Willie Watson','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Wednesday','7/23/2025','7:30 PM','6861505','Alison-Krauss-and-Union-Station--Jerry-Douglas---Willie-Watson-7-23-2025'],['Sam Barber','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Thursday','8/7/2025','7:00 PM','7077740','Sam-Barber-8-7-2025'],['The Head and The Heart','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Thursday','8/14/2025','7:00 PM','7013496','The-Head-and-The-Heart-8-14-2025'],['Chicago - The Band','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Wednesday','8/27/2025','7:00 PM','6927769','Chicago---The-Band-8-27-2025'],['Cypress Hill & Atmosphere','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Friday','8/29/2025','6:00 PM','7106376','Cypress-Hill---Atmosphere-8-29-2025'],['Big Thief','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Sunday','9/21/2025','7:00 PM','7141904','Big-Thief-9-21-2025']],'Idaho Botanical Garden','http://www.ticketnetwork.com/ticket/Idaho-Botanical-Garden-events.aspx');